home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
install
/
install cam subsystem
< prev
next >
Wrap
Text File
|
1994-11-04
|
3KB
|
123 lines
; CAM subsystem Installer script. © Almathera 1994.
; Authored & Hack To Smeggeroonie by THP / Citrus Inc.
; <A subdivsion of Almathera Systems Ltd>
; drugs/alcohol/pain/adrenalin. there must be other ways outta here.
; /******************************************************************************/
; Uh?
(if (= @language "english")
(
(set #copying-arplib "Copying ARP.library to LIBS:")
(set #copying-reqtoolslib "Copying ReqTools.library to LIBS:")
(set #copying-amigaguidelib "Copying AmigaGuide.library to LIBS:")
(set #copying-amigaguide "Copying AmigaGuide to sys:Utilities/")
(set #copying-amigaguidehelp "Copying Help.Guide to s:")
(set #copying-camthing "Copying CAMthing to C:")
(set #copying-lha "Copying LhA 1.38 to C:")
(set src-camthing "c/CAMThing.eng")
)
)
(if (= @language "français")
(
(set #copying-arplib "Copie du fichier ARP.library vers LIBS:")
(set #copying-reqtoolslib "Copie du fichier ReqTools.library vers LIBS:")
(set #copying-amigaguidelib "Copie du fichier AmigaGuide.library vers LIBS:")
(set #copying-amigaguide "Copie du fichier AmigaGuide vers sys:Utilities/")
(set #copying-amigaguidehelp "Copie du fichier Help.Guide vers s:")
(set #copying-camthing "Copie du fichier CAMthing vers C:")
(set #copying-lha "Copie du fichier LhA 1.38 vers C:")
(set src-camthing "c/CAMThing.fr")
)
)
; /******************************************************************************/
; Enough kacking around, let's GO!
(copylib
(prompt "\n" #copying-arplib)
(help @copylib-help)
(source "libs/arp.library")
(dest "libs:")
(confirm)
)
(copylib
(prompt "\n" #copying-amigaguidelib)
(help @copylib-help)
(source "libs/amigaguide.library")
(dest "libs:")
(confirm)
)
(set reqtoolslib "libs/20/reqtools.library")
(if (< (/ (getversion) 65536) 37)
(
(set reqtoolslib "libs/13/reqtools.library")
))
(copylib
(prompt "\n" #copying-reqtoolslib)
(help @copylib-help)
(source reqtoolslib)
(dest "libs:")
(confirm)
)
; /******************************************************************************/
(copylib
(prompt "\n" #copying-amigaguide)
(help @copylib-help)
(source "Utilities/Amigaguide")
(dest "sys:Utilities/")
(infos)
(confirm)
)
(copylib
(prompt "\n" #copying-amigaguidehelp)
(help @copylib-help)
(source "s/Help.Guide")
(dest "s:")
(infos)
(confirm)
)
(copylib
(prompt "\n" #copying-camthing)
(help @copylib-help)
(source src-camthing)
(dest "C:")
(newname "CAMThing")
(confirm)
)
(copylib
(prompt "\n" #copying-lha)
(help @copylib-help)
(source "c/LhA")
(dest "C:")
(confirm)
)